home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000421_news@columbia.edu _Tue Apr 16 12:44:30 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id MAA10317 for <kermit.misc@watsun>; Tue, 16 Apr 1996 12:44:30 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id MAA27761 for kermit.misc@watsun; Tue, 16 Apr 1996 12:44:27 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: K95 script crawling
  8. Date: 16 Apr 1996 16:44:16 GMT
  9. Organization: Columbia University
  10. Lines: 18
  11. Message-ID: <4l0ip0$r3b@apakabar.cc.columbia.edu>
  12. References: <Dpx2AL.8Ix@murdoch.acc.Virginia.EDU> <Dpx8Hp.G19@murdoch.acc.Virginia.EDU>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <Dpx8Hp.G19@murdoch.acc.Virginia.EDU>,
  16. George H. Payne <ghp5h@virginia.edu> wrote:
  17. : In article <Dpx2AL.8Ix@murdoch.acc.Virginia.EDU>, ghp5h@virginia.edu says...
  18. : Forgot to mention:  this is over a telnet connection to a local unix box.
  19. Here's an even faster alternative.  This takes advantage of the fact that
  20. Kermit 95's terminal emulator is active during INPUT commands:
  21.  
  22.   set printer post.tmp
  23.   input 5000 XXXX
  24.  
  25. That's the whole thing.  The INPUT command waits for the termination string,
  26. XXXX.  If, while reading incoming characters, the printer-on sequence is
  27. encountered, subsequent bytes are automatically routed to the SET PRINTER
  28. device (or in this case, file), until a printer-off sequence comes.
  29.  
  30. - Frank